home *** CD-ROM | disk | FTP | other *** search
- #ifndef __CTLHANDLER__
- #define __CTLHANDLER__
-
- #ifndef __TYPES__
- #include <Types.h>
- #endif
-
- #ifndef __EVENTS__
- #include <Events.h>
- #endif
-
- #ifndef __WINDOWS__
- #include <Windows.h>
- #endif
-
- #define kScrollEvent -1
-
- short Ctl2CNum(ControlHandle ctl);
- void DoCtlActivate(WindowPtr window);
- short GetButtonVariant(ControlHandle ctl);
- void GetCheckBoxValues(WindowPtr window, Boolean checkBoxVal[]);
- short GetRadioButtonChoice(WindowPtr window, short famNum);
- short IsCtlEvent(WindowPtr window, EventRecord *event, ControlHandle *ctl, short *action);
- short HandleScrollEvent(WindowPtr window, EventRecord *event, ControlHandle *retCtl, short *action);
-
- #endif __CTLHANDLER__
-
-